home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / ALCKEY.ZIP / MAKEFILE < prev   
Text File  |  1992-11-12  |  333b  |  17 lines

  1. all: alckey.exe
  2.  
  3. APP_compile = -c -AS -Gw -Zpie -W3 -Od
  4. APP_link = /CO /NOD /NOE
  5.  
  6.  
  7. alckey.obj: $*.c $*.h
  8.      cl $(APP_compile) $*.c
  9.  
  10. alckey.res: $*.rc $*.h
  11.      rc -r $*.rc
  12.  
  13. alckey.exe: $*.obj $*.def $*.res
  14.      link $(APP_link) $*, $*, $*/map/li /align:16, libw slibcew penwin, $*.def
  15.      rc $*.res
  16.      mapsym $*
  17.